const runtime.logMaxPackedValue
11 uses
runtime (current package)
mpagealloc.go#L306: if levelLogPages[0] > logMaxPackedValue {
mpagealloc.go#L977: maxPackedValue = 1 << logMaxPackedValue
mpagealloc.go#L978: logMaxPackedValue = logPallocChunkPages + (summaryLevels-1)*summaryLevelBits
mpagealloc.go#L981: uint64(pallocChunkPages<<logMaxPackedValue) |
mpagealloc.go#L982: uint64(pallocChunkPages<<(2*logMaxPackedValue)))
mpagealloc.go#L998: ((uint64(max) & (maxPackedValue - 1)) << logMaxPackedValue) |
mpagealloc.go#L999: ((uint64(end) & (maxPackedValue - 1)) << (2 * logMaxPackedValue)))
mpagealloc.go#L1015: return uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1))
mpagealloc.go#L1023: return uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
mpagealloc.go#L1032: uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1)),
mpagealloc.go#L1033: uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |